home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / ams__l~1.zoo / src / ca_pack.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-05  |  1.2 KB  |  32 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  This file is part of the Atari Machine Specific Library,
  4. //  and is Copyright 1992 by Warwick W. Allison.
  5. //
  6. //  You are free to copy and modify these sources, provided you acknoledge
  7. //  the origin by retaining this notice, and adhere to the conditions
  8. //  described in the file COPYING.
  9. //
  10. //////////////////////////////////////////////////////////////////////////////
  11.  
  12. /**************************************************\
  13.  *                                                *
  14.  *  CrackArt file compressor.                     *
  15.  *                                                *
  16.  *  by Warwick Allison, May 8th 1992.             *
  17.  *                                                *
  18. \**************************************************/
  19. #ifndef ca_pack_h
  20. #define ca_pack_h
  21.  
  22. #include <stdio.h>
  23.  
  24. void SaveCrackArtData(unsigned char* From, int nel, FILE* f, int Compression);
  25. // Pack the given amount of data from the given location to the
  26. // data section of a CrackArt file.  'nel' will normally be 32000.
  27. //
  28. // Compression 0 = minimal compression attempt
  29. // Compression 8 = maximal compression attempt
  30.  
  31. #endif
  32.